home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / include / pwd.h < prev    next >
C/C++ Source or Header  |  1992-07-08  |  292b  |  20 lines

  1. #ifndef _PWD_H
  2. #define _PWD_H
  3.  
  4. struct    passwd {
  5.   char *pw_name;
  6.   char *pw_passwd;
  7.   uid_t pw_uid;
  8.   gid_t pw_gid;
  9.   int  pw_quota;
  10.   char *pw_comment;
  11.   char *pw_gecos;
  12.   char *pw_dir;
  13.   char *pw_shell;
  14. };
  15.  
  16. struct passwd *getpwuid(uid_t uid);
  17. struct passwd *getpwnam(char *name);
  18.  
  19. #endif
  20.